2008-10-24 Matthias Clasen <mclasen@redhat.com>
Bug 556835 – gtkentry.c: variable is declared at middle of block
* gtk/gtkentry.c (gtk_entry_copy_clipboard): Fix a C99ism pointed
out by Kazuki Iwamoto
svn path=/trunk/; revision=21707
+2008-10-24 Matthias Clasen <mclasen@redhat.com>
+
+ Bug 556835 – gtkentry.c: variable is declared at middle of block
+
+ * gtk/gtkentry.c (gtk_entry_copy_clipboard): Fix a C99ism pointed
+ out by Kazuki Iwamoto
+
2008-10-24 Matthias Clasen <mclasen@redhat.com>
Bug 557524 – "va_end(args);" should be added into
{
GtkEditable *editable = GTK_EDITABLE (entry);
gint start, end;
+ gchar *str;
if (gtk_editable_get_selection_bounds (editable, &start, &end))
{
return;
}
- gchar *str = gtk_entry_get_public_chars (entry, start, end);
+ str = gtk_entry_get_public_chars (entry, start, end);
gtk_clipboard_set_text (gtk_widget_get_clipboard (GTK_WIDGET (entry),
GDK_SELECTION_CLIPBOARD),
str, -1);